home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Cafe 3
/
Visual Cafe 3.ISO
/
Vcafe
/
Main.bin
/
EmptyBorder.java
< prev
next >
Wrap
Text File
|
1998-04-21
|
592b
|
31 lines
package com.symantec.itools.swing.borders;
import java.awt.Insets;
public class EmptyBorder
extends com.sun.java.swing.border.EmptyBorder
implements java.io.Serializable
{
public EmptyBorder()
{
super(0,0,0,0);
}
//
// Properties
//
public Insets getInsets()
{
return new Insets(top,left,bottom,right);
}
public void setInsets(Insets newInsets)
{
top = newInsets.top;
left = newInsets.left;
bottom = newInsets.bottom;
right = newInsets.right;
}
}